null operator - перевод на русский
DICLIB.COM
Языковые инструменты на ИИ
Введите слово или словосочетание на любом языке 👆
Язык:     

Перевод и анализ слов искусственным интеллектом

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

null operator - перевод на русский

SUBROUTINE THAT RETURNS NO DATA VALUES AND LEAVES THE PROGRAM STATE UNCHANGED
Null operator; Null operation

null operator         

математика

нулевой оператор

null function         

математика

нулевая функция

null pointer         
A VALUE INDICATING THAT A POINTER DOES NOT REFER TO A VALID OBJECT
Null reference; NullPointerException; NULL pointer; Java.lang.NullPointerException; Null pointer exception; Billion-dollar mistake; Null pointer error

общая лексика

пустой указатель

в программировании - ссылка на ноль. Такое значение указателя может, означать неудачный результат работы функции. Это значение часто присваивается указателю в качестве начального или значения по умолчанию

Смотрите также

pointer

Определение

/dev/null
/dev-nuhl/ [The Unix null device, used as a data sink] A notional "black hole" in any information space being discussed, used, or referred to. A controversial posting, for example, might end "Kudos to rasputin@kremlin.org, flames to /dev/null". See bit bucket. [Jargon File]

Википедия

Null function

In computer science, a null function (or null operator) is a subroutine that leaves the program state unchanged. When it is part of the instruction set of a processor, it is called a NOP or NOOP (No OPeration).

Mathematically, a (computer) function f {\displaystyle f} is null if and only if its execution leaves the program state s {\displaystyle s} unchanged. That is, a null function is an identity function whose domain and codomain are both the state space S {\displaystyle S} of the program, and for which:

f ( s ) = s {\displaystyle f(s)=s} for all elements s S {\displaystyle s\in S} .

Less rigorous definitions may also be encountered. For example, a function may take a single operand, transform it into a new data type, and return the result. While such usages bear a strong visual resemblance to identity functions, they create or alter a binary data value and thus change the program state. From a software maintainability perspective it is better to identify such "minor" alternations of state explicitly, since calling them null functions provides future maintainers of the code with no insights on their actual purposes.

Как переводится null operator на Русский язык